Stochastic Process

The distribution "evolves" over time. Put all time onto one line.

Definition

An indexed collection of random variables. A sequence of random variables. $\{ X_i \}$ or $\{ X(t) \}$.

Explanation

Notation

Example: Card Shuffling

Random variable $X$ represents the state of a card.

$$ \begin{aligned} H(X) &= \log 52! = \sum_{i=1}^{52} \log(i) \approx 226 \text{(bits)} \end{aligned} $$

Stochastic process $\{X_1, \ldots, X_n\}$ represents the shuffling.

One-At-A-Time Shuffling

Each time we select a card uniformly at random from one of the 52 locations and placed it on the top. Then there are 52 different circumstances. $$ \begin{aligned} H(X_{n+1} | X_n, \ldots, X_1) &= H(X_{n+1} | X_n) = \log 52 \approx 5.7 \text{(bits)} \end{aligned} $$ This is a Markov Chain.

by Jon